Foxit PDF SDK
FoxitPDFSDKPython3.MarkupArray类 参考

继承自 FoxitPDFSDKPython3._object .

Public 成员函数

def MarkupArray ()
 构造函数。
 
def MarkupArray (other)
 拷贝构造函数,使用另一个数组对象。 更多...
 
def Add (element)
 向当前数组的末尾添加一个元素。 更多...
 
def GetAt (index)
 检索当前数组中由索引指定位置的元素副本。 更多...
 
def GetSize ()
 获取当前数组中元素的大小。 更多...
 
def InsertAt (index, element)
 在由索引指定的位置之前插入一个元素。 更多...
 
def RemoveAll ()
 从当前数组中移除所有元素。 更多...
 
def RemoveAt (index)
 移除由索引指定位置的元素。 更多...
 

详细描述

此类表示标记注释对象数组。

构造及析构函数说明

◆ MarkupArray()

def FoxitPDFSDKPython3.MarkupArray.MarkupArray (   other)

拷贝构造函数,使用另一个数组对象。

参数
[in]other另一个数组对象。

成员函数说明

◆ Add()

def FoxitPDFSDKPython3.MarkupArray.Add (   element)

向当前数组的末尾添加一个元素。

参数
[in]element要添加到当前数组的新元素。
返回
无。

◆ GetAt()

def FoxitPDFSDKPython3.MarkupArray.GetAt (   index)

检索当前数组中由索引指定位置的元素副本。

参数
[in]index指定要检索的元素的索引。
返回
元素的副本。

◆ GetSize()

def FoxitPDFSDKPython3.MarkupArray.GetSize ( )

获取当前数组中元素的大小。

返回
大小。

◆ InsertAt()

def FoxitPDFSDKPython3.MarkupArray.InsertAt (   index,
  element 
)

在由索引指定的位置之前插入一个元素。

参数
[in]index指定插入新元素位置的索引。有效范围:从 0 到 (size-1)。 size 是当前数组中元素的大小。
[in]element要插入到当前数组的新元素。
返回
无。

◆ RemoveAll()

def FoxitPDFSDKPython3.MarkupArray.RemoveAll ( )

从当前数组中移除所有元素。

返回
无。

◆ RemoveAt()

def FoxitPDFSDKPython3.MarkupArray.RemoveAt (   index)

移除由索引指定位置的元素。

参数
[in]index指定要移除的元素的索引。有效范围:从 0 到 (size-1)。 size 是当前数组中元素的大小。
返回
无。